home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / Defaults.cc,v < prev    next >
Text File  |  1989-02-20  |  1KB  |  88 lines

  1. head     3.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 3.2
  10. date     89.02.20.15.34.11;  author grunwald;  state Exp;
  11. branches ;
  12. next     3.1;
  13.  
  14. 3.1
  15. date     88.12.20.13.48.39;  author grunwald;  state Exp;
  16. branches ;
  17. next     1.2;
  18.  
  19. 1.2
  20. date     88.10.30.13.04.22;  author grunwald;  state Exp;
  21. branches ;
  22. next     1.1;
  23.  
  24. 1.1
  25. date     88.09.28.22.13.19;  author grunwald;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 3.2
  35. log
  36. @Start using Gnu library heaps for schedulers
  37. @
  38. text
  39. @// This may look like C code, but it is really -*- C++ -*-
  40. // 
  41. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  42. //
  43. // written by Dirk Grunwald (grunwald@@cs.uiuc.edu)
  44. //
  45. #include "CpuMultiplexor.h"
  46. #include "AwesimeHeap.h"
  47. #include "FifoScheduler.h"
  48.  
  49. ThreadContainer *
  50. AllocateHardwareCurrentEventsStructure()
  51. {
  52.     return( new FifoScheduler(32) );
  53. }
  54. @
  55.  
  56.  
  57. 3.1
  58. log
  59. @Steay version
  60. @
  61. text
  62. @d9 1
  63. a9 1
  64. #include "HeapScheduler.h"
  65. d14 1
  66. a14 1
  67.     return( new HeapScheduler(32) );
  68. @
  69.  
  70.  
  71. 1.2
  72. log
  73. @*** empty log message ***
  74. @
  75. text
  76. @@
  77.  
  78.  
  79. 1.1
  80. log
  81. @Initial revision
  82. @
  83. text
  84. @d1 7
  85. a7 1
  86. #include "HardwareCpu.h"
  87. @
  88.